home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir32 / wheel248.zip / MAKEBOOK.BAT < prev    next >
DOS Batch File  |  1994-08-11  |  883b  |  25 lines

  1. REM  To assemble this book into a single file:
  2. REM
  3. REM   PC Users:
  4. REM     1. UNZIP the archive into a new (empty) directory
  5. REM     2. From within that directory, run this batch file (MAKEBOOK)
  6. REM     3. The complete book will have the extension ".DOC"
  7. REM
  8. REM  Macintosh and other non-PC users:
  9. REM     1. Use your word processor to copy and paste text from the
  10. REM        separate files into a single file. The files should be
  11. REM        merged in the following order:
  12. REM             TITLE.TXT followed by the files as listed in
  13. REM             the Table of Contents (CONTENTS.TXT).
  14. REM
  15.  
  16. set bookname=wheel248.doc
  17. copy preface.txt+dog_duty.txt+shorter.txt+great.txt+brahmins.txt part0
  18. copy errata.txt+bps.txt+readme.1st part1
  19. copy part0+part1 %bookname%
  20. echo [end] >> %bookname%
  21.  
  22. if exist %bookname% del *.txt
  23. if exist %bookname% del part?
  24. set bookname=
  25.